From c8c8a5753140f410ab1b0ebe3ef31f72e1a032a4 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 8 Nov 2011 12:15:17 -0800 Subject: [PATCH] * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926). --- src/ChangeLog | 4 ++++ src/s/gnu.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 6e7a64852f3..c92af657a54 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-11-08 Paul Eggert + + * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926). + 2011-11-08 Paul Eggert Avoid some portability problems by eschewing 'extern inline' functions. diff --git a/src/s/gnu.h b/src/s/gnu.h index c40f764f8bf..b40f7b0a95b 100644 --- a/src/s/gnu.h +++ b/src/s/gnu.h @@ -44,3 +44,5 @@ along with GNU Emacs. If not, see . */ #endif /* !_IO_STDIO_H */ #endif /* emacs */ +/* Use the GC_MAKE_GCPROS_NOOPS (see lisp.h) method for marking the stack. */ +#define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS -- 2.30.2